home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
dev
/
c
/
GAPLib.lha
/
GAPLib_Beta
/
wrappers
/
c_plus_plus
/
GAP.hh
next >
Wrap
Text File
|
1999-04-22
|
383b
|
28 lines
#ifndef __GAP_HH__
#define __GAP_HH__
extern "C" {
#include <GAP.h>
}
class GPopulation {
public:
GPopulation(int,int,struct TagItem *);
GPopulation(int,int);
~GPopulation();
struct Popstat *GetStats(void);
void *GetMember(int);
int GetSize(void);
void SetSize(int);
int GetGeneration(void);
void Evolve(struct TagItem *);
private:
struct Population *Pop;
};
#endif